home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- go(the frame)
- if rollOver(23) then
- set the visible of sprite 21 to 0
- updateStage()
- else
- set the visible of sprite 21 to 1
- updateStage()
- end if
- if rollOver(24) then
- set the visible of sprite 20 to 0
- updateStage()
- else
- set the visible of sprite 20 to 1
- updateStage()
- end if
- repeat with n = 32 to 35
- if rollOver(n) then
- set the visible of sprite n to 0
- end if
- if rollOver(n) then
- set the visible of sprite (n + 5) to 1
- end if
- updateStage()
- end repeat
- repeat with n = 32 to 35
- if not rollOver(n) then
- set the visible of sprite n to 1
- end if
- if not rollOver(n) then
- set the visible of sprite (n + 5) to 0
- end if
- updateStage()
- end repeat
- end
-